-
Notifications
You must be signed in to change notification settings - Fork 12.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ignore gated-plugin test on stage1 #75404
Conversation
Just like other `#![plugin(...)]` tests it requires stage2 to work correctly.
(rust_highfive has picked a reviewer for you, use r? to override) |
What is the point of running |
Interesting. I never tried to run full
I also noticed that |
IIUC this was always broken with --stage 1 but nobody noticed because it wasn't the default? This fix seems fine to me then. |
This is not fine because |
Like half of the |
I wish you'd raised this concern during the MCP :/ AFAIK |
If we truly need stage 2, then it might make sense to just error in stage 1. I don't know that it's a hard requirement that test suites pass in stage 1. We could annotate them with "needs-stage2" or so such that you can get a nicer error message (e.g., in stage 1 we just list failures in those tests rather than actually trying to run them). |
Yeah, if stage 1 stays a default, then we should probably
|
(Also, I'm pretty sure at least some tests are in |
@petrochenkov and remove I'm going to close this PR since it's not going to be accepted. |
Opened #75905 |
Just like other
#![plugin(...)]
tests it requires stage2 to work correctly.